home *** CD-ROM | disk | FTP | other *** search
/ Complete Linux / Complete Linux.iso / docs / apps / database / ingres04.lzh / source / gutil / pad.c < prev    next >
Encoding:
C/C++ Source or Header  |  1985-01-23  |  248 b   |  21 lines

  1. # include    <sccs.h>
  2.  
  3. SCCSID(@(#)pad.c    8.1    12/31/84)
  4.  
  5. /*
  6. **  PAD STRING OUT WITH BLANKS
  7. **
  8. **    This routine is an in-place pmove which always pads
  9. **    with blanks.
  10. */
  11.  
  12. pad(s, n)
  13. char    *s;
  14. int    n;
  15. {
  16.     register char    *ss;
  17.  
  18.     ss = s;
  19.     pmove(ss, ss, n, ' ');
  20. }
  21.